projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
45369d5
)
Drop two pointless lines
author
Matthias Clasen
<mclasen@redhat.com>
Sat, 13 Sep 2014 02:21:43 +0000
(22:21 -0400)
committer
Matthias Clasen
<mclasen@redhat.com>
Sat, 13 Sep 2014 02:31:10 +0000
(22:31 -0400)
These return statements weren't making any difference.
gtk/gtkdnd.c
patch
|
blob
|
history
diff --git
a/gtk/gtkdnd.c
b/gtk/gtkdnd.c
index b662e6ddc1bafae66ec166a444d9602845b9346c..16a095d795e19de56b006f6d1d1b72cda0b586e3 100644
(file)
--- a/
gtk/gtkdnd.c
+++ b/
gtk/gtkdnd.c
@@
-757,7
+757,6
@@
gtk_drag_get_event_actions (const GdkEvent *event,
*suggested_action = GDK_ACTION_COPY;
*possible_actions = GDK_ACTION_COPY;
}
- return;
}
else
{
@@
-766,7
+765,6
@@
gtk_drag_get_event_actions (const GdkEvent *event,
*suggested_action = GDK_ACTION_MOVE;
*possible_actions = GDK_ACTION_MOVE;
}
- return;
}
}
else